home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / anacron.postrm < prev    next >
Encoding:
Text File  |  2007-03-05  |  313 b   |  17 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. if [ "$1" = "purge" ]; then
  6. # here for historical reasons
  7.     rm -f /var/log/anacron /var/log/anacron.[0-9]*
  8.     rm -rf /var/spool/anacron
  9. fi
  10.  
  11. # Automatically added by dh_installinit
  12. if [ "$1" = "purge" ] ; then
  13.     update-rc.d anacron remove >/dev/null || exit $?
  14. fi
  15. # End automatically added section
  16.  
  17.